home *** CD-ROM | disk | FTP | other *** search
- /* JuliaMorph. Demo ARexx script for MiniMand 1.0 */
-
- i.1 = -.886
- r.1 = -.113
- i.2 = .582
- r.2 = .262
- i.3 = -1.303
- r.3 = .082
-
- DO a = 1 TO 3
- b = (a // 3) + 1
- idif = i.b - i.a
- rdif = r.b - r.a
- DO c = 0 TO 19
- name = 'ram:Hubba.'1000 + (a - 1) * 20 + c
- jimag = i.a + idif * c / 20
- jreal = r.a + rdif * c / 20
- ADDRESS COMMAND 'MiniMand JULIA JIMAG 'jimag' JREAL 'jreal' SCRY 31 SCRX 31 ITER 32 PLANES 4 SAVE 'name' BATCH'
- END
- END
-